home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / pluginy Firefox / 138 / 138.xpi / chrome / stumbleupon.jar / content / moreChannelsDialog.xul < prev    next >
Extensible Markup Language  |  2009-05-22  |  876b  |  31 lines

  1. <?xml version="1.0"?>
  2.  
  3. <?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
  4. <?xml-stylesheet href="chrome://stumbleupon/content/skin/stumbleuponOverlay.css" type="text/css"?>
  5.  
  6. <!DOCTYPE window SYSTEM "chrome://stumbleupon/locale/stumbleupon.dtd" >
  7.  
  8. <dialog id="stumble_more_channels"
  9.     xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
  10.     title="More Channels"
  11.     buttons="accept,cancel"
  12.     ondialogaccept="return handle_accept();"
  13.   ondialogcancel="return handle_cancel();"
  14.     onload="init()">
  15.  
  16. <stringbundleset id="stringbundleset">
  17.     <stringbundle id="bundle_stumble" src="chrome://stumbleupon/locale/stumbleupon.properties"/>
  18. </stringbundleset>
  19.  
  20. <script type="application/x-javascript" src="moreChannelsDialog.js"/>
  21.  
  22. <groupbox>
  23.     <caption label="Website Channels"/>
  24.     <grid>
  25.         <columns id="columns"/>
  26.         <rows id="rows"/>
  27.     </grid>
  28. </groupbox>
  29.  
  30. </dialog>
  31.